home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Database
/
Evaluator
/
SQLWindow.h
< prev
next >
Wrap
Text File
|
1993-07-21
|
349b
|
20 lines
#import <objc/Object.h>
@interface SQLWindow:Object
{
id queryView;
id resultsView;
id database;
}
- initWithFile:(const char *)filename;
- database;
- evaluate:sender; /* makes the database evaluate the contents of the query view */
- clear:sender; /* clears the results view */
- print:sender; /* prints the results view */
@end